update to NixOS 23.11
This commit is contained in:
parent
3b9b7d3c01
commit
69cbed2ea9
5 changed files with 12 additions and 13 deletions
|
@ -5,7 +5,7 @@ My configuration is simple: I have one personal laptop with one user.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Nixpkgs 23.05
|
- Nixpkgs 23.11
|
||||||
- Flakes!
|
- Flakes!
|
||||||
- [Nix User Repository (NUR)](https://github.com/nix-community/NUR)
|
- [Nix User Repository (NUR)](https://github.com/nix-community/NUR)
|
||||||
- Currently only used for Firefox Plugins
|
- Currently only used for Firefox Plugins
|
||||||
|
|
16
flake.lock
16
flake.lock
|
@ -53,14 +53,14 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1700392168,
|
"lastModified": 1700814205,
|
||||||
"narHash": "sha256-v5LprEFx3u4+1vmds9K0/i7sHjT0IYGs7u9v54iz/OA=",
|
"narHash": "sha256-lWqDPKHRbQfi+zNIivf031BUeyciVOtwCwTjyrhDB5g=",
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
"url": "https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz"
|
"url": "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
"url": "https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz"
|
"url": "https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"homeage": {
|
"homeage": {
|
||||||
|
@ -101,16 +101,16 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1700851152,
|
"lastModified": 1701389149,
|
||||||
"narHash": "sha256-3PWITNJZyA3jz5IGREJRfSykM6xSLmD8u5A3WpBCyDM=",
|
"narHash": "sha256-rU1suTIEd5DGCaAXKW6yHoCfR1mnYjOXQFOaH7M23js=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "1216a5ba22a93a4a3a3bfdb4bff0f4727c576fcc",
|
"rev": "5de0b32be6e85dc1a9404c75131316e4ffbc634c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"ref": "nixos-23.05",
|
"ref": "nixos-23.11",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
description = "My NixOS configuration";
|
description = "My NixOS configuration";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
|
||||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||||
nur.url = "github:nix-community/NUR";
|
nur.url = "github:nix-community/NUR";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url =
|
url =
|
||||||
"https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz";
|
"https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
homeage = {
|
homeage = {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
programs.bash = {
|
programs.bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
dig = "dog";
|
|
||||||
htop = "btop";
|
htop = "btop";
|
||||||
gp = "git push";
|
gp = "git push";
|
||||||
gco = "git checkout";
|
gco = "git checkout";
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs; [ wget curl git btop ripgrep vim dogdns tree ];
|
systemPackages = with pkgs; [ wget curl git btop ripgrep vim dogdns tree dig ];
|
||||||
gnome.excludePackages = with pkgs; [
|
gnome.excludePackages = with pkgs; [
|
||||||
gnome.totem
|
gnome.totem
|
||||||
gnome-tour
|
gnome-tour
|
||||||
|
|
Loading…
Reference in a new issue