This commit is contained in:
Steph 2023-02-02 20:25:03 +01:00
parent 4189b2cf29
commit 39fa80f9db
3 changed files with 26 additions and 3 deletions

View File

@ -119,6 +119,7 @@
obs-studio
foliate
pinta
prismlauncher
];
};
@ -168,6 +169,8 @@
openvpn
udev
usbutils
evolution-ews
evolution
gnome.gnome-tweaks
gnomeExtensions.tray-icons-reloaded
@ -188,6 +191,9 @@
services.power-profiles-daemon.enable = false;
services.tlp.enable = true;
services.flatpak.enable = true;
#services.mysql.package = pkgs.mariadb;
#services.mysql.enable = true;
#services.mysql.ensureUsers = [
@ -313,7 +319,6 @@ $NEW_PROMPT_COMMAND"
set -g set-titles-string "#T"
'';
services.flatpak.enable = true;
dconf.settings = {

View File

@ -37,10 +37,27 @@
"type": "github"
}
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1675183161,
"narHash": "sha256-Zq8sNgAxDckpn7tJo7V1afRSk2eoVbu3OjI1QklGLNg=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e1e1b192c1a5aab2960bf0a0bd53a2e8124fa18e",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"home": "home",
"nixpkgs": "nixpkgs"
"nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable"
}
}
},

View File

@ -3,12 +3,13 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home.url = "github:nix-community/home-manager/release-22.05";
home.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, home }: {
outputs = { self, nixpkgs, nixpkgs-unstable, home }: {
nixosConfigurations.iota = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";